home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / util / misc / KeyMapEd.lha / KeyMapEd / Source / KME_Window.h < prev   
Encoding:
C/C++ Source or Header  |  1989-03-14  |  642 b   |  24 lines

  1. /*
  2.  * Define Key Map Editor Window
  3.  *
  4.  * by: Tim Friest
  5.  * on: December 31, 1988
  6.  * using: Power Windows v2.5
  7.  */
  8.  
  9. struct NewWindow NewKMEWindow = {
  10.     0,10,    /* origin */
  11.     640,103,    /* width and height */
  12.     0,1,    /* detail and block pens */
  13.     GADGETUP|CLOSEWINDOW|MENUPICK,    /* IDCMP flags */
  14.     WINDOWDRAG|WINDOWDEPTH|WINDOWCLOSE|ACTIVATE|NOCAREREFRESH,    /* flags */
  15.     GadgetList,    /* gadget list */
  16.     NULL,    /* custom CHECKMARK imagery */
  17.     KeyMapEdVer,    /* title */
  18.     NULL,    /* custom screen pointer */
  19.     NULL,    /* custom bitmap */
  20.     640,103,    /* minimum width and height */
  21.     -1,-1,    /* maximum width and height */
  22.     WBENCHSCREEN    /* destination screen type */
  23. };
  24.